blob: 41001cc7e0f8aaf1dcf92c66fadb451a4c5fefae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
import * as React from "react"
import { type Metadata } from "next"
import { Shell } from "@/components/shell"
import { Skeleton } from "@/components/ui/skeleton"
import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"
import { SearchParams } from "@/types/table"
import { SearchParamsEmailLogCache } from "@/lib/email-log/validations"
import { getEmailLogList } from "@/lib/email-log/service"
import { EmailLogTable } from "@/lib/email-log/table/email-log-table"
export const metadata: Metadata = {
title: "이메일 발신 이력 조회",
description: "발신 이력을 조회합니다.",
}
interface EmailLogPageProps {
searchParams: Promise<SearchParams>
}
export default async function EmailLogPage(props: EmailLogPageProps) {
const searchParams = await props.searchParams
const search = SearchParamsEmailLogCache.parse(searchParams)
const promises = Promise.all([
getEmailLogList(search),
])
return (
<Shell className="gap-2">
<div className="flex items-center justify-between space-y-2">
<div className="flex items-center justify-between space-y-2">
<div>
<div className="flex items-center gap-2">
<h2 className="text-2xl font-bold tracking-tight">이메일 발신 이력 조회</h2>
</div>
</div>
</div>
</div>
<React.Suspense fallback={<Skeleton className="h-7 w-52" />}>
</React.Suspense>
<React.Suspense
fallback={
<DataTableSkeleton
columnCount={5}
searchableColumnCount={1}
filterableColumnCount={2}
cellWidths={["12rem", "18rem", "18rem", "30rem", "12rem"]}
shrinkZero
/>
}
>
<EmailLogTable promises={promises} />
</React.Suspense>
</Shell>
)
}
|